home *** CD-ROM | disk | FTP | other *** search
- //--><script language="JavaScript">
-
- function IMG_INFO(){
- // #### BEGIN g_sTKMRoot DEFINITION ####
- // Start at the beginning of the location and find our document root directory
- var g_sHref = location.href.toLowerCase();
- var g_nEndPos = g_sHref.indexOf('outfitter/');
- // Grab everything up to the end of the word outfitter and add "/tkm/" to set the TKM Root
- var g_sTKMRoot = g_sHref.substring(0, (g_nEndPos + 9)) + '/tkm/';
- // Move past the "outfitter/" string and start looking for the geo/lang
- var g_nBeginGeo = g_nEndPos + 10;
- // Find the next "/" and we have the geo/lang
- var g_nEndGeo = g_sHref.indexOf('/', g_nBeginGeo);
- // Parse out the geo/lang so we know what to use
- var g_sGeo = g_sHref.substring(g_nBeginGeo, g_nEndGeo);
- // #### END g_sTKMRoot DEFINITION ####
-
- switch (g_sGeo){
- case "au":
- this.install = 'width=725,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "br":
- this.install = 'width=775,height=530';
- this.update = 'width=519,height=442';
- this.progress = 'width=433,height=344';
- this.wait = 'width=474,height=376';
- break;
- case "ca":
- this.install = 'width=725,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "cafr":
- this.install = 'width=775,height=545';
- this.update = 'width=519,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "cn":
- this.install = 'width=650,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=295';
- this.wait = 'width=433,height=309';
- break;
- case "de":
- this.install = 'width=725,height=530';
- this.update = 'width=550,height=422';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "es":
- this.install = 'width=725,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=432,height=316';
- this.wait = 'width=474,height=361';
- break;
- case "fr":
- this.install = 'width=775,height=545';
- this.update = 'width=519,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "gb":
- this.install = 'width=725,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "it":
- this.install = 'width=700,height=530';
- this.update = 'width=489,height=420';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "jj":
- this.install = 'width=538,height=586';
- this.update = 'width=489,height=412';
- this.progress = 'width=437,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "jp":
- this.install = 'width=650,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- case "kr":
- this.install = 'width=775,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=435,height=361';
- break;
- case "tw":
- this.install = 'width=538,height=530';
- this.update = 'width=436,height=390';
- this.progress = 'width=412,height=283';
- this.wait = 'width=393,height=315';
- break;
- case "us":
- this.install = 'width=725,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- // Defaults to GB
- default:
- this.install = 'width=725,height=530';
- this.update = 'width=489,height=412';
- this.progress = 'width=412,height=324';
- this.wait = 'width=474,height=361';
- break;
- }
-
- }
-
- var ii = new IMG_INFO();
-
- //--></script>